home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
RTGMaster
/
demos
/
moon
/
BOOLEAN.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-06-24
|
123 b
|
12 lines
#ifndef _BOOLEAN_H
#define _BOOLEAN_H
typedef enum
{
false = 0,
true = 1
}
boolean;
#endif // #ifndef _BOOLEAN_H